Skip to content

Instantly share code, notes, and snippets.

@jared-hughes
jared-hughes / desmos-godmode.user.js
Last active April 18, 2026 03:17
Desmos Godmode: Increases the limit for lists to 1 million elements (from 10_000), and raises the limit for "expressions nested too deeply" from 32k to 1 million
// ==UserScript==
// @name Desmos godmode with lists
// @namespace github.com/jared-hughes
// @match *://www.desmos.com/calculator*
// @description Increase the limits on list length and "nested too deeply" error
// @grant none
// @version 1.4
// @run-at document-start
// @author jared-hughes
// ==/UserScript==

Hardware Requirements

This guide covers the minimum and recommended hardware specifications for hosting OpenClaw across different deployment scenarios. OpenClaw is designed to be lightweight—the Gateway itself is a Node.js process that proxies messages to cloud-hosted LLMs—but resource needs scale with enabled features, concurrent sessions, and sandboxing configuration.

Quick Reference

Scenario CPU RAM Storage Network
Minimal (headless gateway) 1 vCPU 512MB 1GB 1 Mbps
Standard (gateway + channels) 1-2 vCPU 1-2GB 5GB 5 Mbps
@retlehs
retlehs / backlinks.sh
Created April 17, 2026 15:54
Backlinks for any domain via Common Crawl
@infinity0
infinity0 / fuck-gnome.txt
Last active April 18, 2026 03:15
Fuck GNOME
Right about now, Free Software court is in full effect
Judge Whax presiding
In the case of Free Software vs. the GNOME Foundation;
prosecuting attorneys are: Satoshi, YYY, and ZZ-motherfucking-Z
Order, order, order
Satoshi, take the motherfucking stand
Do you swear to tell the truth, the whole truth
and nothing but the truth so help your nerd ass?
@Julianhm9612
Julianhm9612 / zen_python.md
Created April 29, 2019 18:55 — forked from pyjavo/zen_python.md
El zen de Python: Explicado y con ejemplos

El Zen de Python

Si alguna vez abren la consola de python y escriben import this verán que les aparecerán las líneas con el famoso Zen de Python:

  1. Beautiful is better than ugly.
  2. Explicit is better than implicit.
  3. Simple is better than complex.
  4. Complex is better than complicated.
  5. Flat is better than nested.
  6. Sparse is better than dense.
@System-Glitch
System-Glitch / generate_blocks.sh
Last active April 18, 2026 03:10
Tutorial for bitcoin regtest
# Script to generate a new block every minute
# Put this script at the root of your unpacked folder
#!/bin/bash
echo "Generating a block every minute. Press [CTRL+C] to stop.."
address=`./bin/bitcoin-cli getnewaddress`
while :
do

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.